home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / profile.d / tcsh-bindkey.csh < prev    next >
Text File  |  2006-01-09  |  1KB  |  38 lines

  1. ## Gentoo system tcsh script
  2. ##
  3. ## Based on the TCSHRC package (http://tcshrc.sourceforge.net)
  4. ##
  5. ## .tcshrc.bindkey        2Sep2001, Simos Xenitellis (simos@hellug.gr)
  6. ##
  7. ## 2005-09-30  --  Fabian Groffen (grobian@gentoo.org)
  8. ##     Renamed to /etc/profile.d/tcsh-bindkey.csh (now sourced by csh.cshrc)
  9. ##     Moved optional KEY definitions to a separate file, since it was
  10. ##     impossible to activate them anyway
  11. ## 2003-01-13  --  Alain Penders (alain@gentoo.org)
  12. ##     Renamed to /etc/profile.d/tcsh-bindkey
  13. ##     Made unnecessary KEY definitions optional.
  14. ##
  15.  
  16. #  One can use the "bindkey" facility to redefine the meaning of 
  17. #  keys on the keyboard. Now you can eventually use those F*** keys.
  18. #
  19.  
  20. # INSERT : toggles overwrite or insert mode.
  21. bindkey    ^[[2~  overwrite-mode 
  22.  
  23. # DELETE : delete char at cursor position.
  24. bindkey    ^[[3~  delete-char
  25.  
  26. # HOME : go to the beginning of the line.
  27. bindkey    ^[[1~  beginning-of-line
  28.  
  29. # END : go to the end of the line.
  30. bindkey    ^[[4~  end-of-line
  31.  
  32. # PAGE UP : search in history backwards for line beginning as current.
  33. bindkey    ^[[5~   history-search-backward
  34.  
  35. # PAGE DOWN : search in history forwards for line beginning as current.
  36. bindkey    ^[[6~   history-search-forward
  37.  
  38.